home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
m_to_r
/
pdt
/
arrtest3.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
395 b
|
27 lines
unit Arrtest3;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TSortDlg = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
GrpSortOrder: TRadioGroup;
private
{ Private declarations }
public
{ Public declarations }
end;
var
SortDlg: TSortDlg;
implementation
{$R *.DFM}
end.